#get-a-library-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  background-position: center;
  background-size: auto 100%;
  background-repeat: no-repeat;
}
#get-a-library-card h2 {
  width: fit-content;
  position: relative;
  background-color: rgba(255 255 255 / 75%);
  align-self: center;
}
#get-a-library-card h2::before {
  content: "";
  position: absolute;
  width: 4rem;
  height: 100%;
  left: -4rem;
  background: linear-gradient(to right, rgba(255,255,255,0), rgba(255,255,255,0.75));
}
#get-a-library-card h2::after {
  content: "";
  position: absolute;
  width: 4rem;
  height: 100%;
  right: -4rem;
  background: linear-gradient(to left, rgba(255,255,255,0), rgba(255,255,255,0.75));
}